curl --request GET \
--url https://api.topsort.com/public/v1/toppie/campaigns/{campaign-id}/bids \
--header 'Authorization: Bearer <token>'
{
"bids": [
{
"bidAmount": 123,
"isActive": true,
"target": "<string>"
}
],
"hasMore": true,
"nextPage": "SSBzb2xlbW5seSBzd2VhciB0aGF0IEkgYW0gdXAgdG8gbm8gZ29vZAo="
}
Retrieve bidding data for a specific campaign.
curl --request GET \
--url https://api.topsort.com/public/v1/toppie/campaigns/{campaign-id}/bids \
--header 'Authorization: Bearer <token>'
{
"bids": [
{
"bidAmount": 123,
"isActive": true,
"target": "<string>"
}
],
"hasMore": true,
"nextPage": "SSBzb2xlbW5seSBzd2VhciB0aGF0IEkgYW0gdXAgdG8gbm8gZ29vZAo="
}
A valid API key generated in Topsort's UI.
The ID of the campaign.
Pagination cursor as provided in an earlier response. If provided will fetch the next page of results.
Limit of accounts to retrieve.
0 < x <= 100
Successful Response
The response is of type object
.